(0) Obligation:

Runtime Complexity TRS:
The TRS R consists of the following rules:

a__app(nil, YS) → mark(YS)
a__app(cons(X, XS), YS) → cons(mark(X), app(XS, YS))
a__from(X) → cons(mark(X), from(s(X)))
a__zWadr(nil, YS) → nil
a__zWadr(XS, nil) → nil
a__zWadr(cons(X, XS), cons(Y, YS)) → cons(a__app(mark(Y), cons(mark(X), nil)), zWadr(XS, YS))
a__prefix(L) → cons(nil, zWadr(L, prefix(L)))
mark(app(X1, X2)) → a__app(mark(X1), mark(X2))
mark(from(X)) → a__from(mark(X))
mark(zWadr(X1, X2)) → a__zWadr(mark(X1), mark(X2))
mark(prefix(X)) → a__prefix(mark(X))
mark(nil) → nil
mark(cons(X1, X2)) → cons(mark(X1), X2)
mark(s(X)) → s(mark(X))
a__app(X1, X2) → app(X1, X2)
a__from(X) → from(X)
a__zWadr(X1, X2) → zWadr(X1, X2)
a__prefix(X) → prefix(X)

Rewrite Strategy: FULL

(1) CpxTrsToCpxRelTrsProof (BOTH BOUNDS(ID, ID) transformation)

Transformed TRS to relative TRS where S is empty.

(2) Obligation:

Runtime Complexity Relative TRS:
The TRS R consists of the following rules:

a__app(nil, YS) → mark(YS)
a__app(cons(X, XS), YS) → cons(mark(X), app(XS, YS))
a__from(X) → cons(mark(X), from(s(X)))
a__zWadr(nil, YS) → nil
a__zWadr(XS, nil) → nil
a__zWadr(cons(X, XS), cons(Y, YS)) → cons(a__app(mark(Y), cons(mark(X), nil)), zWadr(XS, YS))
a__prefix(L) → cons(nil, zWadr(L, prefix(L)))
mark(app(X1, X2)) → a__app(mark(X1), mark(X2))
mark(from(X)) → a__from(mark(X))
mark(zWadr(X1, X2)) → a__zWadr(mark(X1), mark(X2))
mark(prefix(X)) → a__prefix(mark(X))
mark(nil) → nil
mark(cons(X1, X2)) → cons(mark(X1), X2)
mark(s(X)) → s(mark(X))
a__app(X1, X2) → app(X1, X2)
a__from(X) → from(X)
a__zWadr(X1, X2) → zWadr(X1, X2)
a__prefix(X) → prefix(X)

S is empty.
Rewrite Strategy: FULL

(3) SlicingProof (LOWER BOUND(ID) transformation)

Sliced the following arguments:
cons/1

(4) Obligation:

Runtime Complexity Relative TRS:
The TRS R consists of the following rules:

a__app(nil, YS) → mark(YS)
a__app(cons(X), YS) → cons(mark(X))
a__from(X) → cons(mark(X))
a__zWadr(nil, YS) → nil
a__zWadr(XS, nil) → nil
a__zWadr(cons(X), cons(Y)) → cons(a__app(mark(Y), cons(mark(X))))
a__prefix(L) → cons(nil)
mark(app(X1, X2)) → a__app(mark(X1), mark(X2))
mark(from(X)) → a__from(mark(X))
mark(zWadr(X1, X2)) → a__zWadr(mark(X1), mark(X2))
mark(prefix(X)) → a__prefix(mark(X))
mark(nil) → nil
mark(cons(X1)) → cons(mark(X1))
mark(s(X)) → s(mark(X))
a__app(X1, X2) → app(X1, X2)
a__from(X) → from(X)
a__zWadr(X1, X2) → zWadr(X1, X2)
a__prefix(X) → prefix(X)

S is empty.
Rewrite Strategy: FULL

(5) DecreasingLoopProof (EQUIVALENT transformation)

The following loop(s) give(s) rise to the lower bound Ω(n1):
The rewrite sequence
mark(app(X1, X2)) →+ a__app(mark(X1), mark(X2))
gives rise to a decreasing loop by considering the right hand sides subterm at position [0].
The pumping substitution is [X1 / app(X1, X2)].
The result substitution is [ ].

(6) BOUNDS(n^1, INF)